home *** CD-ROM | disk | FTP | other *** search
- /*
- externs: external variable declarations for all of the program.
- Beware though that many of the variables that the parser uses are
- actualy externs also due to the way variables are declared for use
- with yacc.
-
- Kenneth Ingham
-
- Copyright (C) 1987 The University of New Mexico
- */
-
- #include "defs.h"
- #include "y.tab.h"
-
- struct cmd_st *clist = NULL;
- struct old_cmd_st *chead = NULL;
-
- int parse_error = False;
-
- int pflag, cflag, vflag, nflag;
- int lexverbose;
- char *histfilename;
- char *controlname;
- int line_ok;
- int cmd_ok;
- int control_line = 1;
- char *myname;
-
- struct out_fmt_st *key = NULL;
-